home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / epstein1.zip / INSTALL.BAT next >
DOS Batch File  |  1993-02-20  |  3KB  |  78 lines

  1. @ECHO OFF
  2. ECHO OFF
  3. REM two of them just incase you're using pre-3.3
  4. CLS
  5. ECHO Epstein MenuMaker BETA 1.0 Installation Procedure (2/20/93)
  6. ECHO  
  7. ECHO This is the semi-functional Installation procedure for the BETA/Freeware
  8. ECHO version of Epstein MenuMaker, a semi-functional menuing system.
  9. ECHO  
  10. ECHO NOTE: INSTALL WILL NOT SET UP YOUR APPLICATIONS FOR YOU!  (That's why
  11. ECHO we call it Beta!)
  12. ECHO  
  13. ECHO Epstein MenuMaker has been tested on a 486SX/25 running DOS 5, a 486SX/25
  14. ECHO running OS/2 2.00.1, a 286/8 running DOS 5, and a 286/8 running DOS 3.3,
  15. ECHO a 386SXL/25 notebook running OS/2 2.0, a 386SL/25 notebook running
  16. ECHO Windows 3.1, a 486DX/50 running DOS 5.0, and a few others.
  17. ECHO  
  18. ECHO Run this program at your own risk, as no warrenty expressed or implied
  19. ECHO is here, you know, the usual legal stuff.
  20. ECHO  
  21. IF %1' == ' goto error
  22. IF %2' == ' goto error
  23. ECHO Press a key to install to %1%2 or Ctrl-Break to exit.
  24. PAUSE>NUL
  25. CLS
  26. ECHO Epstein MenuMaker will install itself, Epstein ScreenSaver, and
  27. ECHO various utility and sample menu files to %1.
  28. ECHO All together, they occupy about 33K of disk space, but are amazingly
  29. ECHO functional (well, at least somewhat functional).
  30. ECHO  
  31. ECHO Creating batch loader...
  32. ECHO @ECHO OFF>EMM.BAT
  33. ECHO %1>>EMM.BAT
  34. ECHO CD %2>>EMM.BAT
  35. ECHO CALL MM MAIN>>EMM.BAT
  36. ECHO CLS>>EMM.BAT
  37. ECHO ECHO Type EMM to return to Epstein MenuMaker.>>EMM.BAT
  38. ECHO ECHO  >>EMM.BAT
  39. ECHO Creating directory...
  40. MD %1%2
  41. ECHO Checking files...
  42. IF NOT EXIST EMM.BAT goto error2
  43. IF NOT EXIST INSTALL.BAT goto error2
  44. IF NOT EXIST MM.BAT goto error2
  45. IF NOT EXIST MMB.EXE goto error2
  46. IF NOT EXIST NOBREAK.EXE goto error2
  47. IF NOT EXIST SAVE.EXE GOTO error2
  48. IF NOT EXIST SAVEDAT.ESS goto error2
  49. IF NOT EXIST MAIN.EMM goto error2
  50. IF NOT EXIST README.TXT goto error2
  51. IF NOT EXIST UTIL.EMM
  52. ECHO Copying files...
  53. COPY EMM.BAT %1%2
  54. COPY INSTALL.BAT %1%2
  55. COPY MM.BAT %1%2
  56. COPY MMB.EXE %1%2
  57. COPY NOBREAK.EXE %1%2
  58. COPY SAVE.EXE %1%2
  59. COPY SAVEDAT.ESS %1%2
  60. COPY MAIN.EMM %1%2
  61. COPY README.TXT %1%2
  62. COPY UTIL.EMM %1%2
  63. DEL EMM.BAT
  64. CLS
  65. ECHO Installation completed.
  66. ECHO  
  67. ECHO Please read %1%2\README.TXT for information on creating your menus.
  68. ECHO For optimal performance, add %1%2 to your AUTOEXEC.BAT's PATH.
  69. goto end
  70. :error2
  71. ECHO A required file was not found.  This program is unusable.
  72. goto end
  73. :error
  74. ECHO Please type INSTALL X: \DIR where X: is the target drive and
  75. ECHO \DIR is the target directory.  Note the space between X: and \DIR.
  76. goto end
  77. :end
  78.